aa58c76ba92243a66b2643bc1d0b2d507b3e3413,Mage/src/main/java/mage/abilities/effects/common/MeldEffect.java,MeldEffect,apply,#Game#Ability#,73

Before Change


            Permanent sourcePermanent = game.getPermanent(sourceId);
            Permanent meldWithPermanent = game.getPermanent(meldWithId);
            sourcePermanent.moveToExile(null, "", sourceId, game);
            meldWithPermanent.moveToExile(null, "", sourceId, game);
            // Create the meld card and move it to the battlefield.
            Card sourceCard = game.getExile().getCard(sourceId, game);
            Card meldWithCard = game.getExile().getCard(meldWithId, game);

After Change


            // Exile the two permanents to meld.
            Permanent sourcePermanent = game.getPermanent(sourceId);
            Permanent meldWithPermanent = game.getPermanent(meldWithId);
            if (sourcePermanent != null && meldWithPermanent != null) {
                sourcePermanent.moveToExile(null, "", sourceId, game);
                meldWithPermanent.moveToExile(null, "", sourceId, game);
                // Create the meld card and move it to the battlefield.
                Card sourceCard = game.getExile().getCard(sourceId, game);
                Card meldWithCard = game.getExile().getCard(meldWithId, game);